2005-06-23 Owen Taylor <otaylor@redhat.com>
* gdk/gdkcairo.c (gdk_cairo_set_source_pixbuf): Fix the
big endian case for 3-channel source. (Reported by
David Zeuthen)
+2005-06-23 Owen Taylor <otaylor@redhat.com>
+
+ * gdk/gdkcairo.c (gdk_cairo_set_source_pixbuf): Fix the
+ big endian case for 3-channel source. (Reported by
+ David Zeuthen)
+
2005-06-23 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkbutton.c (gtk_button_construct_child): Don't
+2005-06-23 Owen Taylor <otaylor@redhat.com>
+
+ * gdk/gdkcairo.c (gdk_cairo_set_source_pixbuf): Fix the
+ big endian case for 3-channel source. (Reported by
+ David Zeuthen)
+
2005-06-23 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkbutton.c (gtk_button_construct_child): Don't
+2005-06-23 Owen Taylor <otaylor@redhat.com>
+
+ * gdk/gdkcairo.c (gdk_cairo_set_source_pixbuf): Fix the
+ big endian case for 3-channel source. (Reported by
+ David Zeuthen)
+
2005-06-23 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkbutton.c (gtk_button_construct_child): Don't
q[1] = p[1];
q[2] = p[0];
#else
- q[0] = p[0];
- q[1] = p[1];
- q[2] = p[2];
+ q[1] = p[0];
+ q[2] = p[1];
+ q[3] = p[2];
#endif
p += 3;
q += 4;